home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_3.lha / 7_3 / makefile < prev    next >
Makefile  |  1993-08-08  |  391b  |  23 lines

  1. C= CC -I. -I../shape -I../../CC
  2. FLAGS= +i -g
  3. HP= ../shape
  4.  
  5. ll: tst
  6.  
  7. BJ= nshape.o $(SHP)/shape.o $(SHP)/myshape.o $(SHP)/slist.o $(SHP)/put_line.o $(SHP)/screen.o
  8.  
  9. st: $(OBJ)
  10. $(CC) $(OBJ) -o tst
  11.  
  12. shape.o: nshape.c $(SHP)/shape.h 7_3a.c 7_3c.c 7_3d.c
  13. $(CC) $(CFLAGS) -c nshape.c
  14.  
  15. MP= tst.cmp
  16. UT= tst.out
  17.  
  18. st.out: tst ;    tst > tst.out
  19.  
  20. est: all $(CMP) $(OUT)
  21. cmp tst.out tst.cmp
  22. @echo test done
  23.